home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / cross / GBDK-2.0.lha / GBDK / lib / calloc.c < prev    next >
C/C++ Source or Header  |  1998-10-01  |  234b  |  15 lines

  1. #include <sys/malloc.h>
  2. #include <string.h>
  3.  
  4. void *calloc( UWORD nmem, UWORD size )
  5. {
  6.     void *malloced;
  7.  
  8.     malloced = malloc( nmem*size );
  9.     if (malloced!=NULL) {
  10.         memset( malloced, 0, nmem*size );
  11.         return malloced;
  12.     }
  13.     return    NULL;
  14. }
  15.